(function ($) {
$(document).ready(function () {
$('.hero__slides').slick({
dots: true,
infinite: true,
autoplaySpeed: 5000,
adaptiveHeight: false,
autoplay: true,
slidesToShow: 1,
arrows: true,
appendDots: $('.hero .slider-controls .custom-dots'),
appendArrows: $('.hero .slider-controls .custom-pagination'),
nextArrow: '',
prevArrow: '',
customPaging: function (slider, i) {
return ``;
},
});
if ($('.hero__slides').find('.slick-slide').length === 1) {
$('.hero__slides').slick('unslick');
}
});
})(jQuery);